faster-hex
This program implements hex encoding a slice into a predetermined destination using various different instruction sets.
Benchmark
Running
Runs benchmark
cargo bench
Results
Machine: MacBook Pro (Early 2015) (2.7 GHz Intel Core i5)
Rust: rustc 1.31.0 (abe02cefd 2018-12-04)
Compare with hex:
- Encoding ~10x over
- Decoding ~10x over
Compare with rustc-hex:
- Encoding ~2.5x over
- Decoding ~7x over
Examples
Encode to hex
use hex_string;
let result = hex_string;
assert_eq!;
Encode to upper case hex
use hex_string_upper;
let result = hex_string_upper;
assert_eq!;
Decode
use hex_decode;
let src = b"48656c6c6f20776f726c6421";
let mut dst = vec!;
hex_decode.unwrap;
assert_eq!;
Decode with case check
use ;
let src = b"48656c6c6f20776f726c6421";
let mut dst = vec!;
assert!;
assert_eq!;
assert!;
assert_eq!;
assert!;
Serde feature
use ;
Notice
Major version zero (0.y.z) is for initial development. Anything MAY change at any time. The public API SHOULD NOT be considered stable.
MINOR version when make incompatible API changes before 1.0.0.
License
This project is licensed under the MIT license.
Third party software
This product includes copies and modifications of software developed by third parties:
- src/encode.rs is based on stdsimd, licensed under the MIT license or the Apache License (Version 2.0).
- src/decode.rs avx2 decode is modified from fast-hex
See the source code files for more details.
Copies of third party licenses can be found in LICENSE-THIRD-PARTY.